home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 26.zip / BS1 part 26 / Powervisor v1.10b disk1.adf / PVDevelop / include / PV / FileBase.h < prev    next >
C/C++ Source or Header  |  1991-09-15  |  572b  |  35 lines

  1. #ifndef PV_FILEBASE_H
  2. #define PV_FILEBASE_H TRUE
  3. /*
  4. **  $Filename: FileBase.h $
  5. **  $Release: 1.02 $
  6. **  $Revision: 37.346 $
  7. **  $Date: 15 Sep 91 $
  8. **
  9. **  Structure definitions for File Base (see 'TheWizardCorner')
  10. **
  11. **  © 1991 Jorrit Tyberghein, included with PowerVisor
  12. **        All Rights Reserved
  13. */
  14.  
  15. #ifndef PV_PVMEMORY_H
  16. #include "PVMemory.h"
  17. #endif
  18.  
  19. #ifndef DOS_DOS_H
  20. #include <dos/dos.h>
  21. #endif
  22.  
  23.  
  24. struct FileBase
  25.     {
  26.         BPTR CliOutput;
  27.         PVHANDLE ControlFile;
  28.         PVHANDLE HelpFile;
  29.         PVHANDLE ScriptFile;
  30.         BPTR LogFile;
  31.         struct LogicalWindow *LogLogWin;
  32.     };
  33.  
  34. #endif
  35.